Lists in the body of your HTML document (page):
<OL>
<LI>This is item one.
<LI>This is item two.
<LI>This is item three.
</OL>
In this example, the list is an ordered list (<OL>). You can use
any of the following to form a list:
- <UL> for an unordered list.
- <DIR> for a directory list (in form only).
- <MENU> for a menu list (again, in form only).
- <OL> for an ordered list (as illustrated above).
You can view the source code for
THIS page. The above list is actually an unordered list.